2007-01-06 Michael Schumacher <schumaml@cvs.gnome.org>
* Makefile.am: don't go into the extensions subdirectory on
Windows
* extensions/Makefile.am: removed the win32_libs definition, using
libgw32c does more harm than good, apparently
svn path=/trunk/; revision=192
+2007-01-06 Michael Schumacher <schumaml@cvs.gnome.org>
+
+ * Makefile.am: don't go into the extensions subdirectory on
+ Windows
+ * extensions/Makefile.am: removed the win32_libs definition, using
+ libgw32c does more harm than good, apparently
+
2007-01-06 Michael Schumacher <schumaml@cvs.gnome.org>
* docs/Makefile.am: added EXEEXT to the tools used in some
AUTOMAKE_OPTIONS = foreign dist-bzip2
+if OS_WIN32
+extensions=
+else
+extensions=extensions
+endif
+
SUBDIRS = babl \
- extensions \
+ ${extensions} \
tests \
docs
# file babl_extensions
if OS_WIN32
-win32_libs = ../babl/.libs/libbabl.a -lgw32c -liberty -lole32 -luuid -lwsock32
no_undefined = -no-undefined
endif
LDFLAGS += -shared
-LDADD = $(win32_libs) $(no-undefined)
+LDADD = $(no-undefined)
%.so: %.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(LDADD)